home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / kubuntu-docs.postinst < prev    next >
Text File  |  2008-10-17  |  371b  |  18 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4.  
  5.  
  6. case "$1" in
  7.   configure)
  8.     if which install-docs >/dev/null 2>&1; then
  9.         install-docs -i /usr/share/doc-base/kubuntu-systemdocs
  10.         ln -sf /usr/share/doc/kde4/HTML/en/common \
  11.             /usr/share/doc/kde4/HTML/en/kubuntu/
  12.         ln -sf /usr/share/doc/kde4/HTML/en/kubuntu/index/index.html \
  13.             /usr/share/doc/kde4/HTML/en/kubuntu/index.html
  14.   fi
  15.   ;;
  16. esac
  17. exit 0
  18.